home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 4: GNU Archives
/
Linux Cubed Series 4 - GNU Archives.iso
/
gnu
/
gawk-3.000
/
gawk-3
/
gawk-3.0.0
/
test
/
splitargv.awk
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
AWK Script
|
1993-10-20
|
144 b
|
8 lines
BEGIN {
for (idx = 1; idx < ARGC; idx++)
split(ARGV[idx], temp, ".");
}
{
print $0;
}